home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / rusers_output.nasl < prev    next >
Text File  |  2005-01-14  |  3KB  |  118 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6. # Nothing really new - I just realized that Nessus won't show the
  7. # output of rusers, so I added this plugin.
  8. #
  9.  
  10. if(description)
  11. {
  12.  script_id(11058);
  13.  script_version ("$Revision: 1.4 $");
  14.  script_cve_id("CVE-1999-0626");
  15.  
  16.  name["english"] = "rusersd output";
  17.  
  18.  script_name(english:name["english"]);
  19.  
  20.  desc["english"] = "
  21. This script connects to the remote rusers server
  22. and attempts to extract the list of users currently
  23. logged in the remote host.";
  24.  
  25.  
  26.  
  27.  
  28.  script_description(english:desc["english"]);
  29.  
  30.  summary["english"] = "Checks the presence of a RPC service";
  31.  summary["francais"] = "VΘrifie la prΘsence d'un service RPC";
  32.  script_summary(english:summary["english"], francais:summary["francais"]);
  33.  
  34.  script_category(ACT_GATHER_INFO);
  35.  
  36.  
  37.  script_copyright(english:"This script is Copyright (C) 2002 Renaud Deraison",
  38.         francais:"Ce script est Copyright (C) 2002 Renaud Deraison");
  39.  family["english"] = "RPC"; 
  40.  family["francais"] = "RPC";
  41.  script_family(english:family["english"], francais:family["francais"]);
  42.  script_dependencie("rpc_portmap.nasl");
  43.  script_require_keys("rpc/portmap");
  44.  exit(0);
  45. }
  46.  
  47. include("misc_func.inc");
  48.  
  49.  
  50. # rusersd is only on top of UDP (AFAIK)
  51. port = get_rpc_port(program:100002, protocol:IPPROTO_UDP);
  52. if(!port)exit(0);
  53.  
  54. soc = open_sock_udp(port);
  55.  
  56. req = raw_string(0x25, 0xC8, 0x20, 0x4C, 0x00, 0x00,
  57.              0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01,
  58.          0x86, 0xA2, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00,
  59.          0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  60.          0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  61.          0x00, 0x00);
  62.  
  63. send(socket:soc, data:req);
  64. r = recv(socket:soc, length:4096);
  65. close(soc);
  66. if(strlen(r) > 28)
  67. {
  68.   num_entries = ord(r[27]);
  69.   if(num_entries == 0)
  70.   {
  71.     report = string("Using rusers, we could determine that no one is currently logged on the\n", "remote host.\n");
  72.     security_note(data:report, port:port, proto:"udp");
  73.     exit(0);
  74.   }
  75.  
  76.   report = string("Using rusers, we could determine that the following users are logged in :\n");
  77.   start = 32;
  78.   for(i=0; i < num_entries ; i = i + 1)
  79.   {
  80.     tty = "";
  81.     len = 0;
  82.     for(j = start ; ord(r[j]) && len < 16 ; j = j + 1)
  83.     {
  84.        if(j > strlen(r))exit(0);
  85.        tty = string(tty, r[j]);
  86.        len = len + 1;
  87.     }
  88.  
  89.    start = start + 12;
  90.    user = "";
  91.    len = 0;
  92.    for(j = start ; ord(r[j]) &&  len < 16; j = j + 1)
  93.    {
  94.      if(j > strlen(r))exit(0);
  95.      user = string(user, r[j]);
  96.      len = len + 1;
  97.    }
  98.    start = start + 12;
  99.    from = "";
  100.    len  = 0;
  101.    for(j = start ; ord(r[j]) && len < 16 ; j = j + 1)
  102.    {
  103.      len = len + 1;
  104.      if(j > strlen(r))exit(0);
  105.      from = string(from, r[j]);
  106.    }
  107.    
  108.    start = start + 28;
  109.    report = string(report, "\n  - ", user, " (", tty, ")");
  110.    if(strlen(from))report = string(report, " from ", from);
  111.   }
  112.  
  113.   report = string(report, "\n\nSolution : disable this service.\n", 
  114.               "Risk factor : Low");
  115.  
  116.   security_note(data:report, port:port, proto:"udp");
  117. }
  118.